HiFi Color Values
A color expressed in one of the multichannel color spaces with 5, 6, 7, or 8 channels. The color value for each channel component is expressed as an unsigned byte of typechar
.
struct CMMultichannel5Color { unsigned charcomponents[5]; }; struct CMMultichannel6Color { unsigned charcomponents[6]; }; struct CMMultichannel7Color { unsigned charcomponents[7]; }; struct CMMultichannel8Color { unsigned charcomponents[8]; };